home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 1.iso
/
HENSA
/
MISC
/
SHELL.ARC
/
Shell
/
Sources
/
c
/
ForcRedraw
< prev
next >
Wrap
Text File
|
1994-08-30
|
450b
|
19 lines
#include <time.h>
#include "DeskLib:WimpSWIs.h"
#include "Shell.Shell.h"
#include "Shell.ForcRedraw.h"
void Shell_ForceRectRedrawAll( Shell_rectblock *r)
{ window_redrawblock block;
r->last_update = clock();
block.window = r->window;
block.rect = (r->plot_icon) ? r->icon.workarearect : r->rect;
Wimp_ForceRedraw( &block); /* The actual redraw will be done when the Wimp sends */
/* event_REDRAW on the next Shell/Event_Poll. */
return;
}